Keysight Pathwave 89600 VSA .NET API
SendData(IEnumerable<Single[]>) Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > UserInputData Class > SendData Method : SendData(IEnumerable<Single[]>) Method


dataSamples
Time series data blocks (one block of data for each channel specified by ChannelCount, as element in an array) to be consumed by attached Measurement. If UserInputSetup.IsComplexData is true, complex data is expected, and presented in this parameter as alternating real and imaginary values.

Glossary Item Box

Send data to be processed.

Syntax

Visual Basic (Declaration) 
Public Overloads MustOverride Sub SendData( _
   ByVal dataSamples As IEnumerable(Of Single()) _
) 
C# 
public abstract void SendData( 
   IEnumerable<float[]> dataSamples
)
C++/CLI 
public:
abstract void SendData( 
   IEnumerable<array<float>>^ dataSamples
) 

Parameters

dataSamples
Time series data blocks (one block of data for each channel specified by ChannelCount, as element in an array) to be consumed by attached Measurement. If UserInputSetup.IsComplexData is true, complex data is expected, and presented in this parameter as alternating real and imaginary values.

Remarks

Send data for multiple channels into first-in-first-out (FIFO) buffers to be consumed by attached Measurement. Data can be sent for a single channel using UserInputDataChannel.SendData.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also